home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / prtrep51.zip / REPSRC.ZIP / PREPDEMO.DPR next >
Text File  |  1996-03-21  |  531b  |  21 lines

  1. program Prepdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Repdem01 in 'REPDEM01.PAS' {dem01form},
  6.   Repdem02 in 'REPDEM02.PAS' {dem02form},
  7.   Repdem03 in 'REPDEM03.PAS' {dem03form},
  8.   Repdem04 in 'REPDEM04.PAS' {dem04form},
  9.   Repdem05 in 'REPDEM05.PAS' {dem05form},
  10.   Unitmain in 'UNITMAIN.PAS' {MainDialog},
  11.   Repdem06 in 'REPDEM06.PAS' {dem06Form},
  12.   Repdem07 in 'REPDEM07.PAS' {Dem07Form};
  13.  
  14. {$R *.RES}
  15.  
  16. begin
  17.   Application.Title := 'Print Demo - Reports';
  18.   Application.CreateForm(TMainDialog, MainDialog);
  19.   Application.Run;
  20. end.
  21.